Fix a formatting error in the docs
authorMatthias Clasen <mclasen@redhat.com>
Sun, 24 May 2009 04:17:49 +0000 (00:17 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 24 May 2009 04:17:49 +0000 (00:17 -0400)
Need to replace % by %amp; in examples. This was noticed in
bug 583522.

docs/reference/gtk/migrating-GtkBuilder.sgml

index a85ea68a848623bf3e7897e2a0202aaa12fb1b0c..d18eaf89fe0efd67274a4065b132c8d0c1bba945 100644 (file)
@@ -53,7 +53,7 @@ GError* error = NULL;
 GtkBuilder* builder = gtk_builder_new (<!-- -->);
 if (!gtk_builder_add_from_file (builder, FILE, &amp;error))
   {
-    g_warning ("Couldn't load builder file: %s", error->message);
+    g_warning ("Couldn't load builder file: %amp;s", error->message);
     g_error_free (error);
   }
 </screen>